
<style>
/* --- UPDATED STYLING --- */
.download-page-wrapper {
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 50px; /* Space before footer */
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #e0e0e0;
}

.section-main-title {
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    border-left: 3px solid #ff9b44; /* Changed to match your orange button theme */
    padding-left: 15px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* --- INSTRUCTIONS BLOCK --- */
.instructions-container {
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.instructions-header {
    font-size: 16px;
    color: #ff9d00;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
}

.instruction-list {
    list-style: none;
    padding: 0;
}

.instruction-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    font-size: 14px;
}

.step-num {
    color: #ff9b44;
    font-weight: bold;
    margin-right: 15px;
    font-family: monospace;
    background: rgba(255, 155, 68, 0.1);
    padding: 2px 8px;
    border-radius: 3px;
}

.highlight-gold { color: #ff9b44; font-weight: bold; }
.highlight-blue { color: #58a6ff; font-weight: bold; }

/* --- DOWNLOAD CARDS GRID --- */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.download-card {
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.download-card:hover {
    border-color: #ff9b44;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.card-header h4 {
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    font-weight: 800;
}

.file-size { font-size: 11px; color: #8b949e; font-weight: bold; }

/* --- BUTTON STYLING --- */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dl-btn {
    display: block;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    transition: 0.3s;
    border-radius: 6px;
}

.dl-btn.mega:hover { 
    background: linear-gradient(180deg, #ff9b44 0%, #d46c1a 100%);
    border-color: #ff9b44;
    box-shadow: 0 4px 15px rgba(212, 108, 26, 0.3);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
    .download-grid { grid-template-columns: 1fr; }
}
</style>